home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue35 / tetris / TETRIS.ZIP / TETRIS.DPR next >
Encoding:
Text File  |  1998-04-04  |  654 b   |  22 lines

  1. {------------------------------------------------------}
  2. {                                                      }
  3. {  Simple tetris. Written by Alexander Bikov 1997,98.  }
  4. {  This is dynamic game for Windows 95 or Windows NT.  }
  5. {  EMail: exstation@te.net.ua                          }
  6. {                                             freeware }
  7. {------------------------------------------------------}
  8. program Tetris;
  9.  
  10. uses
  11.   Forms,
  12.   Tetris1 in 'TETRIS1.PAS' {Tetro1},
  13.   Tetris2 in 'Tetris2.pas' {Tetro2};
  14.  
  15. {$R *.RES}
  16.  
  17. begin
  18.   Application.CreateForm(TTetro1, Tetro1);
  19.   Application.CreateForm(TTetro2, Tetro2);
  20.   Application.Run;
  21. end.
  22.